updating oE any_key
any_key
include console.e namespace console public procedure any_key(sequence prompt = "Press Any Key to continue...", integer con = 1)
displays a prompt to the user and waits for any key.
Parameters:
- prompt : Prompt to display, defaults to "Press Any Key to continue..." .
- con : Either 1 (stdout), or 2 (stderr). Defaults to 1 .
Comments:
This wraps wait_key by giving a clue that the user should press a key, and perhaps do some other things as well.
Example 1:
include std/console.e any_key() -- "Press Any Key to continue..."
Example 2:
include std/console.e any_key("Press Any Key to quit")
See Also:
Not Categorized, Please Help
|